home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 1999 January / maximum-cd-1999-01.iso / Symantec Visual Cafe / WDESAMPL.BIN / ExampleActionListener.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-06-23  |  806 b   |  14 lines

  1. package actual;
  2.  
  3. import java.awt.event.ActionEvent;
  4. import java.awt.event.ActionListener;
  5.  
  6. class ExampleActionListener implements ActionListener {
  7.    public ExampleActionListener() {
  8.    }
  9.  
  10.    public void actionPerformed(ActionEvent var1) {
  11.       System.out.println("Button Pressed: " + var1.getActionCommand());
  12.    }
  13. }
  14.